-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Update base version to 3.3.1-RC1 #16768
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Also fix incorrect tasty version
@@ -289,7 +289,7 @@ object TastyFormat { | |||
* compatibility, but remains backwards compatible, with all | |||
* preceeding `MinorVersion`. | |||
*/ | |||
final val MinorVersion: Int = 2 | |||
final val MinorVersion: Int = 4 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
During the merge of language-reference-stable
, git somehow decided there was no conflict here.
We need to make it impossible for ports from the documentation to change anything except the documentation itself and the scaladoc. I'll try to achieve that later this week.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should have been minor version 3
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Acctualy, I was wrong, this was only used to release 3.4.0-RC1
. Therefore the version is correct.
val Interfaces: Seq[ProblemFilter] = Seq( | ||
ProblemFilters.exclude[MissingClassProblem]("dotty.tools.dotc.interfaces.DiagnosticRelatedInformation"), | ||
ProblemFilters.exclude[ReversedMissingMethodProblem]("dotty.tools.dotc.interfaces.Diagnostic.diagnosticRelatedInformation") | ||
ProblemFilters.exclude[ReversedMissingMethodProblem]("dotty.tools.dotc.interfaces.Diagnostic.diagnosticRelatedInformation"), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would expect these exclusions would disappear after the release of 3.3 - not that we would need more for previously added parts of the API
Also fix incorrect tasty version